/* ===== GLOBAL STYLES ===== */
/* --- GLOBAL VARIABLES & RESET --- */
:root {
  --primary: #2c599d;
  --primary-dark: #1a3d73;
  --accent: #f98125;
  --light: #ebf0f5;
  --dark: #212529;
  --gray: #6c757d;
  --white: #ffffff;
  --font-main: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
}
html {
  width: 100%;
  overflow-x: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
  position: relative;
    width: 100%;
    min-width: 100%;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.text-navy {
  color: var(--primary);
}

.text-orange {
  color: var(--accent);
}

.text-center {
  text-align: center;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn-orange {
  background-color: var(--accent);
  color: var(--white);
}

.btn-orange:hover {
  background-color: #e06d1c;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
}
/* Header & Navigation */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 35px;
  width: auto;
}

.logo-text {
  font-weight: 700;
  font-size: 1.4rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
}

.download-btn {
  background-color: var(--accent);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  font-size: 0.9rem;
    /* Smaller font */
}

.download-btn:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 1001;
}

/* Banner Content */
.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5% 6rem;
  text-align: center;
  position: relative;
  z-index: 1;
  position: relative;
}

.banner-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  animation: fadeInDown 1s ease;
  color: white;
}

.banner-content p {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .banner-content h1 {
    font-size: 2.8rem;
  }

  .banner-content p {
    font-size: 1.2rem;
  }

  .banner {
    min-height: 70vh;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    /* Changed from absolute to fixed */
    top: 60px;
    /* Position below header */
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    text-align: center;
    padding: 2rem 0;
    width: 100%;
    z-index: 1000;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    padding: 0.8rem;
      font-size: 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links .download-btn {
    display: inline-block;
    margin: 1rem auto;
    width: 80%;
    text-align: center;
  }

  .banner-content {
    
    padding-top: 6rem;
    /* More space for mobile menu */
  }

  .banner-content h1 {
    font-size: 2.3rem;
  }

  .banner-content p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .banner-content h1 {
    font-size: 2rem;
  }

  .banner {
    min-height: 60vh;
  }

  .section-title {
    font-size: 1.8rem;
  }
}
/* ===== FOOTER STYLES ===== */
footer {
  background: var(--primary);
    color: white;
    padding-top: 4rem;
}

.footer-container {
  max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5% 1rem;
    /* Reduced padding */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* More compact */
    gap: 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h4 {
  font-size: 1.1rem;
    /* Smaller heading */
    margin-bottom: 1rem;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.footer-section a:hover {
  color: white;
  padding-left: 8px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
    height: 35px;
    font-size: 0.9rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  padding: 0;
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}
